From 742d08b18cf3218758a96218320cf510acee93d0 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 13 May 2016 19:42:40 -0400 Subject: [PATCH] Clarify that release builds go in the release dir, not another subdir Good call @steveklabnik! This matches much more nicely with the contrast to `target/debug`. --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 4afc3de64..d2150928f 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -104,7 +104,7 @@ Once you’re ready for release, you can use `cargo build --release` to compile class="s1"> Compiling hello_world v0.1.0 (file:///path/to/project/hello_world) `cargo build --release` puts the resulting binary in -`target/release/hello_world` instead of `target/debug`. +`target/release` instead of `target/debug`. # Working on an existing Cargo project -- 2.30.2